home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Database Designers / Rational Rose 2000 / Rational Setup.EXE / common / OutOfTheBox / synchronizer rules / class_to_tr_requirement.rsd < prev    next >
Encoding:
Text File  |  1998-11-23  |  660 b   |  21 lines

  1. # File:        class_to_tr_requirement.rsd
  2. # Purpose:    Sample rule to create a test requirement in a Rational 
  3. #        RequisitePro domain project that corresponds to a class
  4. #        in a Rational Rose domain project.
  5.  
  6. ###############################################################################
  7. begin rule "Create Test Requirement from Rose Class"
  8.  
  9. description
  10. {
  11. For each class model element in the Rational Rose domain, create a test
  12. requirement object in the Rational Test domain.
  13. }
  14.  
  15.     projects Rose to RequisitePro
  16.     items Class to "Test Requirement Type"
  17.     properties
  18.         source.Name to target.Text
  19.         source.Documentation to target."Test Notes"
  20.  
  21. end rule